blob: 80d91ae816aaae53bbeb05f5cd226252c9241485 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
.ImageContainer img {
width: auto;
height: auto;
border-radius: 5px;
margin-top: 10px;
}
.Image {
display: flex;
flex-direction: column;
align-items: center;
background-color: #1b1b1b;
border-radius: 10px;
width: auto;
margin-top: 10px;
}
.ImageContainer p {
text-align: center;
color: white;
font-family: "Kanit";
font-size: 16px;
margin: 5px;
}
.NotFound {
text-align: center;
color: white;
font-family: "Atkinson Hyperlegible";
font-size: 20px;
}
.DownloadMain {
text-align: center;
}
.DownloadMain button {
border: none;
outline: none;
border-radius: 5px;
padding: 5px;
font-family: "Lato";
font-size: 16px;
background-color: var(--light-green);
cursor: pointer;
}
.DownloadMain button:hover {
background-color: var(--pastel-red);
}
@media screen and (max-width: 768px) {
.ImageContainer img {
width: 90%;
align-items: center;
}
.Image {
width: 100%;
}
}
|